home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / Box2D / Collision / _yl661.as < prev   
Encoding:
Text File  |  2010-05-14  |  1.7 KB  |  79 lines

  1. package Box2D.Collision
  2. {
  3.    import Box2D.Common._kc225;
  4.    
  5.    public class _yl661
  6.    {
  7.       public static var b2_nullPair:uint = _kc225.USHRT_MAX;
  8.       
  9.       public static var b2_nullProxy:uint = _kc225.USHRT_MAX;
  10.       
  11.       public static var b2_tableCapacity:int = _kc225.b2_maxPairs;
  12.       
  13.       public static var b2_tableMask:int = b2_tableCapacity - 1;
  14.       
  15.       public static var e_pairBuffered:uint = 1;
  16.       
  17.       public static var e_pairRemoved:uint = 2;
  18.       
  19.       public static var e_pairFinal:uint = 4;
  20.       
  21.       public var proxyId1:uint;
  22.       
  23.       public var proxyId2:uint;
  24.       
  25.       public var next:uint;
  26.       
  27.       public var userData:* = null;
  28.       
  29.       public var status:uint;
  30.       
  31.       public function _yl661()
  32.       {
  33.          userData = null;
  34.          super();
  35.       }
  36.       
  37.       public function _wj324() : Boolean
  38.       {
  39.          return (status & e_pairFinal) == e_pairFinal;
  40.       }
  41.       
  42.       public function _pc218() : Boolean
  43.       {
  44.          return (status & e_pairBuffered) == e_pairBuffered;
  45.       }
  46.       
  47.       public function _mv430() : void
  48.       {
  49.          status &= ~e_pairRemoved;
  50.       }
  51.       
  52.       public function _mu276() : Boolean
  53.       {
  54.          return (status & e_pairRemoved) == e_pairRemoved;
  55.       }
  56.       
  57.       public function _pa607() : void
  58.       {
  59.          status |= e_pairFinal;
  60.       }
  61.       
  62.       public function _lu469() : void
  63.       {
  64.          status |= e_pairRemoved;
  65.       }
  66.       
  67.       public function _bo405() : void
  68.       {
  69.          status |= e_pairBuffered;
  70.       }
  71.       
  72.       public function _wp583() : void
  73.       {
  74.          status &= ~e_pairBuffered;
  75.       }
  76.    }
  77. }
  78.  
  79.